home *** CD-ROM | disk | FTP | other *** search
- # File: uc_requirement_to_tr_requirement.rsd
- # Purpose: Sample rule to create a test requirement corresponding to
- # a Use case requirement in a Rational RequisitePro
- # domain project. It also traces the test requirement back to the
- # Use-case database requirement.
-
- ###############################################################################
- #
- # Create a test requirement corresponding to a use case requirement.
- begin rule "Create Test requirement from Use Case requirement"
-
- description
- {
- For a use case requirement, create a test requirement that will be used
- by TestStudio. This rule applies when the Test attribute on the UC requirement
- is True.
- }
-
- projects RequisitePro to RequisitePro
- items "Use Case Requirement Type" to "Test Requirement Type"
- applies when Test = True
- properties
- source.Text init target.Text
- trace target to source
-
- end rule
-